home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 52 / Amiga Format AFCD52 (Issue 136, May 2000).iso / -serious- / programming / other / mesa / mesa-aux / src-aux.aos / shapes.h < prev    next >
Text File  |  2000-02-23  |  332b  |  10 lines

  1. /*
  2.  * structure for each geometric object  
  3.  */
  4. typedef struct model {
  5.   GLuint list;                                       /* display list to render object */
  6.   struct model *ptr;                                   /* pointer to next object */
  7.   int numParam;                                       /* # of parameters */
  8.   GLdouble *params;                                   /* array with parameters */
  9. } MODEL, *MODELPTR;
  10.